関数 函数 function
なにかしらの入力値(引数)をあたえられることによって、あらかじめ処理を行い、
その結果(戻り値)を返す仕組み
関数名
仮引数
関数の中身
返り値
オブジェクトの一種
デフォルト引数
code:function.js
function hoge(huga = "デフォルト値"){
return huga
}
console.log(hoge("例")) // 例
console.log(hoge()) // デフォルト値
code:method.js
const obj ={
method(){
return "Method"
}
};
console.log(obj.method());
参考